home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr37 / randtag.zip / RANDTAG.DOC < prev    next >
Text File  |  1995-03-18  |  8KB  |  211 lines

  1.                                -=[ RandTag ]=-
  2.  
  3.                     -= Software developed by Spencer Lui =-
  4.  
  5.                         (C)Copyright 1995 CyrixSoft 
  6.  
  7.                               ALL RIGHTS RESERVED
  8.  
  9.                              Shareware Version 1.0a
  10.  
  11.                        RE: Archive filename is RANDTAG1.ZIP
  12.  
  13.  
  14. Disclaimer:
  15.  
  16.         The author of this program, Spencer Lui, shall not be held
  17.         responsible for any damages, loss of data or any other loss as a
  18.         result of using this software.  The user, by using this software,
  19.         takes FULL responsibility and liability for use of and any damages,
  20.         losses, etc... as a result of this software. Every effort has been
  21.         made to ensure that this software is free from defects and has been
  22.         thoroughly tested before release to the general public.
  23.  
  24.  
  25. Introduction:
  26.  
  27.         This program will create a file containing a random tagline, which 
  28.         you may display to your users each time they log off your Bulletin 
  29.         Board System.  Thus, each time your users log off, they will see 
  30.         another humorous tagline.  
  31.  
  32.  
  33. Registration:
  34.  
  35.         This program (RandTag) is Shareware.  Feel free to distribute
  36.         the program (in it's unaltered form and archive) as Shareware.  You
  37.         are free to use this program for a period of thirty (30) days.  Thus,
  38.         you are able to try the software for a thirty (30) day evaluation
  39.         period to see if it meets your needs.  If you use RandTag after
  40.         a thirty (30) day evaluation period, you are asked to send the author
  41.         $5.00 (that's right, only $5.00) to register the software.
  42.         The registered version will remove the UNREGISTERED trademark,
  43.         and the UNREGISTERED DELAYS.
  44.  
  45.  
  46. Installation:
  47.  
  48.         Installation is fairly easy and straight-forward. The following steps
  49.         and examples should have you up and running in a very short period of
  50.         time.  It is assumed that you are familiar with setting up security
  51.         specific display files on your system.  However, every attempt will be
  52.         made to thoroughly explain the installation of RandTag and
  53.         security specific display files for the benefit of all.
  54.  
  55.  
  56. Overview:
  57.  
  58.         Edit the RANDTAG.CFG file, in the file are self-explanatory 
  59.         instructions.  RandTag will create a display file (ex: RANDTAG.ANS) 
  60.         that you specify in the RANDTAG.CFG file.  The display file will 
  61.         contain a random tagline taken from TAGLINES.DAT.  
  62.         
  63.         [PCBoard offers many ways to display a text file to a user.  You may 
  64.         display the file as a Logon Script, Logoff Script, News File, or even 
  65.         as Login Security Files.  Please consult your PCBoard Manual for 
  66.         detailed explanations of the above mentioned display files if you 
  67.         are unfamiliar with their setup and implementation.]
  68.         
  69.  
  70. Explanation of terms used in RANDTAG.CFG:
  71.  
  72.         1.  Line 1 is the location and name of the display file you want to
  73.             create.  Example: C:\BBS\RANDTAG.ANS (creates the display file
  74.             called RANDTAG.ANS in the C:\BBS directory).
  75.         2.  Line 2 is the Pause Character.  Different BBS software use 
  76.             different pause characters.  A pause character allows the 
  77.             the user to press a key after the file has been displayed.  If you
  78.             do not want to use a pause character put NONE.
  79.  
  80.  
  81. File List:
  82.  
  83. RANDTAG.EXE  - The RandTag executable.
  84. RANDTAG.CFG  - Configuration file for RandTag.
  85. TAGLINES.DAT - Tagline Database.
  86. RANDTAG.DOC  - What you're reading right now.
  87. FILE_ID.DIZ  - File description (you may delete this).
  88.  
  89.  
  90. Directory Setup:
  91.  
  92.         I recommend that you unzip RANDTAG1.ZIP into a directory created off
  93.         of your home BBS directory, such as C:\BBS\RANDTAG.
  94.  
  95.                 1.  Create a home directory for the RandTag files
  96.                     to reside in.  ( MD C:\BBS\RANDTAG )
  97.  
  98.                 2.  Unzip RANDTAG1.ZIP into the desired directory.
  99.                     ( PKUNZIP RANDTAG1.ZIP C:\BBS\RANDTAG )
  100.  
  101.         Multi-Node Setup:
  102.  
  103.         NOTE:  I recommend making separate file locations for each node
  104.                if you are running a multi-node setup.  This will eliminate
  105.                any possibility of having two nodes trying to access the
  106.                RandTag executables or display files resulting in a sharing 
  107.                violation.  Thus, you will run separate RandTag executables 
  108.                and display files for each node.
  109.  
  110.  
  111. Creation of the display files:
  112.  
  113.         Creation of the display files couldn't be easier!  Just setup a batch
  114.         file similar to this:
  115.  
  116.         CD \BBS\RANDTAG          <------ Go into the RandTag directory.
  117.         RANDTAG                  <------ Run RandTag/Create Display File.
  118.         CD \BBS                  <------ Go back into your BBS directory.
  119.  
  120.         That's it!  Run this batch file ANYTIME you want.  You can even run
  121.         this batch file in your nightly event.  From here, just setup your
  122.         BBS software to display the file.
  123.  
  124.  
  125. Creation of the display files (PCBoard):
  126.  
  127.         RandTag will create a new random tagline each time it is run.
  128.         The display file can easily be created while a user logs off, via a
  129.         $$LOGOFF.BAT file.  Please see your PCBoard Manual if you are
  130.         unfamiliar with setup and implementation of $$LOGOFF.BAT.
  131.  
  132.         Sample $$LOGOFF.BAT                     Explanation:
  133.  
  134.  
  135.         @ECHO OFF                <------ Turns Local Echo Off
  136.         cd \pcb\randtag         *<------ Change Directories to RandTag
  137.         randtag                 *<------ Run RandTag/Create display file
  138.         cd \pcb                 *<------ Change Dir. Back to Home PCBoard Dir.
  139.         :end                     <------ End of Execution of $$LOGOFF.BAT
  140.         cls                      <------ Clears the screen
  141.  
  142.         NOTE:  '*' indicates RandTag Specific Commands.
  143.  
  144.  
  145. Use of Login Security Files (PCBoard):
  146.  
  147.         PCBoard will display Login Security Files to the users each time they
  148.         login.  These files are in the format '##', i.e. 30 for security level
  149.         30 users, 40 for security level 40 users, 55 for security level 55
  150.         users, etc.  Example:  Security level 40 users will be shown the 40
  151.         file during login.  The locations of these Login Security Files can
  152.         be specified within PCBSETUP.
  153.  
  154.  
  155. Example of Login Security File (PCBoard):
  156.  
  157.         FILENAME: 40
  158.         CONTENTS: %C:\PCB\RANDTAG\RANDTAG.ANS
  159.  
  160.         The previous example will display RANDTAG.ANS to each user with a
  161.         security level of 40.  Note:  The location of RANDTAG.ANS in this
  162.         case is C:\PCB\RANDTAG.  See the PCBoard Manual for further reference
  163.         in displaying files via the % method.
  164.  
  165.                          
  166.                          
  167.                          RandTag v1.0 Registration Form
  168.  
  169.         Thank you for supporting Shareware.  The registered version of
  170.         RandTag will remove the UNREGISTERED trademark and the 
  171.         UNREGISTERED DELAYS.  RandTag uses the KEY file system for 
  172.         registration.  Once I receive your registration money I will create
  173.         a KEY file for you.  Simple call IFX Online Canada and download the 
  174.         file.
  175.  
  176.  
  177. Please Include Your Address Info:
  178.  
  179.  
  180.        FIRST NAME_________________    LAST NAME__________________________
  181.  
  182.        MIDDLE INITIAL_____________    HOME PHONE_________________________
  183.  
  184.        ADDRESS___________________________________________________________
  185.  
  186.        CITY__________________________________  STATE_____________________
  187.  
  188.        ZIP CODE____________________            DATE______________________
  189.  
  190.  
  191.  
  192.                      Please Mail All Registrations To:
  193.  
  194.               IFX Online Systems Canada
  195.                 217 Woodsworth Road
  196.                 North York, Ontario
  197.                       M2L 2T5
  198.  
  199.                            Support / Bug Reports:
  200.  
  201. Call the CyrixSoft Support BBS:
  202.  
  203. IFX Online Canada
  204. Node 1: (416) 444-5653 [28.8k]
  205. Node 2: (416) 444-0311 [14.4k]
  206.  
  207. Join Conference #101 -> CyrixSoft Support
  208.  
  209. I think that just about covers everything.
  210. Thank You for your support!
  211.